GCC4.6: Squash warning in cfi_flash.c
authorMarek Vasut <[email protected]>
Fri, 21 Oct 2011 14:17:05 +0000 (14:17 +0000)
committerWolfgang Denk <[email protected]>
Thu, 27 Oct 2011 21:54:04 +0000 (23:54 +0200)
cfi_flash.c: In function 'flash_protect_default':
cfi_flash.c:2152: warning: format '%08x' expects type 'unsigned int', but
argument 2 has type 'ulong'
cfi_flash.c:2152: warning: format '%08x' expects type 'unsigned int', but
argument 3 has type 'long unsigned int'

Signed-off-by: Marek Vasut <[email protected]>
Cc: Wolfgang Denk <[email protected]>
Cc: Simon Glass <[email protected]>
Cc: Mike Frysinger <[email protected]>
Cc: Scott Wood <[email protected]>
drivers/mtd/cfi_flash.c

index ac91dfd9536de74f13f82561ed10076b5918fecc..5494bcffa7c4b247992f8a7e0e997a4b02cda2bf 100644 (file)
@@ -2149,7 +2149,7 @@ void flash_protect_default(void)
 
 #if defined(CONFIG_SYS_FLASH_AUTOPROTECT_LIST)
        for (i = 0; i < (sizeof(apl) / sizeof(struct apl_s)); i++) {
-               debug("autoprotecting from %08x to %08x\n",
+               debug("autoprotecting from %08lx to %08lx\n",
                      apl[i].start, apl[i].start + apl[i].size - 1);
                flash_protect(FLAG_PROTECT_SET,
                               apl[i].start,